home *** CD-ROM | disk | FTP | other *** search
/ Iron Maiden - Maiden Hell! / Iron Maiden - Maiden Hell! Promotional CD-ROM.iso / mac / promo.dxr / scripts_85_slide around morph video = .ls < prev    next >
Encoding:
Text File  |  1998-09-16  |  902 b   |  28 lines

  1. on mouseEnter
  2.   set the cursor of sprite the currentSpriteNum to [the number of member "hand", the number of member "handmask"]
  3. end
  4.  
  5. on mouseDown
  6.   set the movieRate of sprite 7 to 0
  7.   set howlong to 660
  8.   repeat while the stillDown
  9.     if (the mouseH > the left of sprite 9) and (the mouseH < the right of sprite 9) then
  10.       set the locH of sprite 10 to the mouseH
  11.       if the locH of sprite 10 < the left of sprite 9 then
  12.         set the locH of sprite 10 to the left of sprite 9
  13.       end if
  14.       if the locH of sprite 10 > the right of sprite 9 then
  15.         set the locH of sprite 10 to the right of sprite 9
  16.       end if
  17.       set howfar to the locH of sprite 10 - the left of sprite 9
  18.       set the movieTime of sprite 7 to (howlong * howfar / 300.0) - 2
  19.       alUpdate()
  20.       updateStage()
  21.     end if
  22.   end repeat
  23. end
  24.  
  25. on mouseLeave
  26.   set the cursor of sprite the currentSpriteNum to 0
  27. end
  28.